home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Languguage OS 2
/
Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO
/
a_utils
/
perl
/
msds-prl
/
perl386.zoo
/
makefile.386
< prev
next >
Wrap
Makefile
|
1992-12-17
|
366b
|
19 lines
# $Id: makefile.386 1.1 92/08/27 18:52:54 doi Exp $
# make a library for MS-DOS stuff needed to build perl with DJGPP
# all sources come from the perl distribution
# Hitoshi Doi <doi@jrd.dec.com>, 1992.06.28
#
CC=gcc
CFLAGS = -O -DMSDOS -DDJGPP
OBJS = msdos.o popen.o
libmsdos.a: $(OBJS)
ar rcv libmsdos.a $(OBJS)
.c.o:
gcc $(CFLAGS) -c $<